home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / bluej / bluejsetup-203.exe / {app} / lib / chinese / templates / newclass / stdclass.tmpl < prev    next >
Text File  |  2004-12-19  |  495b  |  34 lines

  1. $PKGLINE
  2. /**
  3.  * ╘┌╒Γ└∩╕°│÷╢╘└α $CLASSNAME ╡─├Φ╩÷íú
  4.  * 
  5.  * @╫≈╒▀ú¿─π╡─├√╫╓ú⌐
  6.  * @░µ▒╛ú¿╥╗╕÷░µ▒╛║┼╗≥╒▀╥╗╕÷╚╒╞┌ú⌐
  7.  */
  8. public class $CLASSNAME
  9. {
  10.     // ╩╡└²▒Σ┴┐ - ╙├─π╫╘╝║╡─▒Σ┴┐╠µ╗╗╧┬├µ╡─└²╫╙
  11.     private int x;
  12.  
  13.     /**
  14.      * └α $CLASSNAME ╡─╢╘╧≤╡─╣╣╘∞║»╩²
  15.      */
  16.     public $CLASSNAME()
  17.     {
  18.         // │⌡╩╝╗»╩╡└²▒Σ┴┐
  19.         x = 0;
  20.     }
  21.  
  22.     /**
  23.      * ╥╗╕÷╖╜╖¿╡─└²╫╙ - ╩╣╙├─π╫╘╝║╡─╦╡├≈╠µ┤·╦ⁿ
  24.      * 
  25.      * @▓╬╩² yú¼╖╜╖¿╡─╥╗╕÷╤∙▒╛▓╬╩²
  26.      * @╖╡╗╪ xú¼y╡─║═ 
  27.      */
  28.     public int sampleMethod(int y)
  29.     {
  30.         // ╘┌╒Γ└∩╝╙╚δ─π╡─┤·┬δ
  31.         return x + y;
  32.     }
  33. }
  34.